* {
  text-decoration: none;
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
}

.footer-section {
  width: 100%;
  background-color: #0f0f0f;
  padding: 40px 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-logo img {
  height: 70px;
  width: 100%;
  cursor: pointer;
}

/* Navigation Links */
.navlinks ul {
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
}
.navlinks ul li a {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 600;
  color: white;
  transition: color 0.3s ease;
}
.navlinks ul li a:hover {
  color: #e37528;
  text-decoration: none;
}

/* Newsletter Section */
.newsletter-section h1 {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.email-box {
  width: 100%;
  max-width: 400px;
  height: 55px;
  background: #fff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  margin-bottom: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.email-box input {
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  font-size: clamp(14px, 2vw, 16px);
  padding-left: 10px;
  border-radius: 30px;
}

.email-box button {
  background: #000;
  border: none;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.email-box button i {
  font-size: clamp(16px, 2vw, 18px);
}

.newsletter-section p {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  color: white;
  max-width: 350px;
  line-height: 1.5;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
  .navlinks ul {
    display: flex;
    flex-direction: column;
  }
  .navlinks ul li a {
    font-weight: 400;
  }
  .newsletter-section p {
    max-width: 100%;
  }
  .newsletter-section {
    border-top: 1px solid white;
    padding-top: 20px;
  }
}
